home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / shell / csh543mberndt.lha / HISTORY < prev    next >
Text File  |  1995-04-19  |  16KB  |  352 lines

  1.  
  2.  
  3.                                   HISTORY
  4.                                  =========
  5.  
  6.  
  7. Changes from 5.42 to 5.43   (by Martin Berndt, m_berndt@wanderer.gun.de)
  8. -------------------------
  9.  - Fixed bug: Protect and Chmod did not work correctly with muFS.     (*)
  10.  - Fixed bug: Translated filedates (Today, Monday etc.) did not work. (*)
  11.  - Fixed bug: new _promptdep routine did not work if first pathpart
  12.     was exactly 3 characters long
  13.  - No more "hopping" windows when using the builtin "window" command
  14.  - Changed output of builtin "mem" command slightly
  15.  - Created optimized 68000 and 68030 version                          (*)
  16.  
  17. (*) = same procedure every release...   ;-)
  18.  
  19.  
  20.  
  21. Changes from 5.41 to 5.42   (public release)
  22. -------------------------
  23.  - Minor changes in documentation.
  24.  - Built-in command "window" doesn't clear screen anymore.
  25.     If you want to clear screen, use "echo -n ^[c^O" or "echo -n ^L".
  26.  - Fixed timer bug in _prompt (%e) if start and end time of a program
  27.     were not at the same day. (wrong execution time was displayed)
  28.  - New built-in variable "_promptdep" (prompt path depth) and new place-
  29.     holder "%P" for built-in variable "_prompt". Like "%p", "%P" displays
  30.     the current path. With "_promptdep" the user sets the maximum number
  31.     of directories (path parts) displayed for %P (to keep prompt smart
  32.     and short). Default is 3.
  33.  - New built-in variable "_complete" (DOS pattern). What files should
  34.     match on filename completion. Default is "*". For example, if you
  35.     don't want to see files ending with ".bak", set it to "~(*.bak)".
  36.  
  37.  
  38.  
  39. Changes from 5.40 to 5.41   (internal beta release)
  40. -------------------------
  41.  - Changed output format of built-in command "mem" (for option -r)
  42.     a little bit.
  43.  - Fixed various bugs in built-in command "window". The changes for 5.40
  44.     caused an unnecessary usage message when using options -f, -b and -a.
  45.     And options -l and -s didn't work at all. The checking for maximum
  46.     window dimensions are not hardcoded any more but dynamically adjusted
  47.     to the screen dimensions.
  48.  - Finally found (and fixed) rounding bug in "itok()", caused display of
  49.     wrong size for memory or harddisk disk around 1 GB and 1 TB etc.
  50.     Numbers were rounded down to "0 GB" and "0 TB" instead of rounded
  51.     up to "1 GB" and "1 TB".
  52.     [thanks to Andreas 'Leguan' Geist]
  53.  - Changed shortcut for "Kilobytes" from "KB" (or "K") to "kB" (or "k").
  54.     You may like it or not - but only this way it's consistent. They say
  55.     one should use "K" instead of "k" because it has something to do with
  56.     1024 and not 1000.  But then, why don't we use "m" instead of "M" and
  57.     "g" instead of "G"?
  58.  
  59.  
  60.  
  61. Changes from 5.39 to 5.40   (public release)
  62. -------------------------
  63.  - Fixed error message for built-in command "copy": if no special error
  64.     message was available, always the string "(no mem)" was output.
  65.  - New placeholders "-1" and "-2" for built-in command "window".
  66.  - Increased maximum value for window dimensions from 1023 to 32767
  67.     for built-in command "window".
  68.  - Environment variables LINES and COLUMNS override window bounds
  69.     from Amiga console.device.
  70.     (if env vars are set, no CSI sequence is sent)
  71.  - Built-in command "mem" now shows size of largest available memory block.
  72.  
  73.  
  74.  
  75. Changes from 5.38 to 5.39   (public release)
  76. -------------------------
  77.  - New built-in variable "_timeout" (in microseconds) sets maximum response
  78.     time for terminal to answer WINDOW STATUS REQUEST (for window bounds).
  79.     Defaults to 1 (for local usage), must be set to higher value for remote
  80.     connections.  Only used, if window pointer is not available.
  81.  - Removed command line length limitation (140 chars) for ARexx scripts that
  82.     ends with ".rexx" but are started without the trailing ".rexx".
  83.  - Removed command line length limitation (518 chars) for ARexx scripts and
  84.     external shells (#! in first line), this was a limitation in AmigaOS'
  85.     System() function.  DOS scripts still have this limitation, because you
  86.     cannot RunCommand() "execute".
  87.  - Not only "*" and "?" but also "[" and "]" recognized as AmigaDOS pattern.
  88.     (that means, to use "[" and "]" you must quote (") or escape (\) them!)
  89.  - ... and much more workarounds for serious bugs in DateToStr() and Locale
  90.  - Fixed bug: making an assign to an executable and calling the executable
  91.     by its assign crashed machine.
  92.  - Fixed bug: built-in command "cp" sometimes used already freed memory for
  93.     generating error messages (resulted in some strange error messages)
  94.  - New flag for for command abbreviation ($_abbrev):
  95.     8, search DOS path-list if command wasn't found in Cshell's internal
  96.     program hash list (see "rehash" command)
  97.  
  98.  
  99.  
  100. Changes from 5.37 to 5.38   (internal beta release)
  101. -------------------------
  102.  - CTRL-D now shows matching files if current word is not a directory.
  103.     (if directory then shows contents of directory -- as usual)
  104.     In its current implementation this may have unexpected side effects
  105.     if current word is already a pattern.
  106.  - Class definition for AmigaE in class.sh
  107.     [thanks to Joseph E. Van_Riper III]
  108.  - Now internal timer (eg, %e in the titlebar) not set to zero when a null
  109.     command is encountered.  (same for return code, %x in titlebar)
  110.  - The idea of always using the variable "_dirformat" for "dir" wasn't a
  111.     good idea.  So, "_dirformat" is only used if option -z is given (when
  112.     "_dirformat" is unset then use first argument as format string).
  113.  - New control-code for line-editing: "^V" (ctrl-v) quotes next char.
  114.  - New built-in variable "_kick" holds version number of Operating System.
  115.  - Built-in command "assign" now prints volume name if assign points to
  116.     an unmounted volume (eg, a removed floppy disk) and doesn't pop up
  117.     a requester "Please replace volume ..."
  118.  - It was a stupid idea to force redirecting of all Cshell-related
  119.     system requesters to CSH's screen, because requester windows inherit
  120.     the window title of their "initiator". They appear now again on your
  121.     default public screen.
  122.  - Fixed serious bug (crashed machine) with redirection and launching
  123.     programs into background. (files closed twice)
  124.     Known bug: it's still not possible to run pipes into background...
  125.  - When running programs into background (run, rback, &), internal commands
  126.     and aliases are recognized and executed with "csh -c". Aliases WON'T be
  127.     resolved on this level so they must be declared in .cshrc to run them
  128.     into background.
  129.  - Execution of Rexx-Scripts (without trailing ".rexx") and any other program
  130.     with "#! my_prog" or ";! my_prog" in first line of script now possible
  131.     also from DOS search path and not only $_path.
  132.  - New built-in variable "_mappath" (see manual), enables pathname-mapping
  133.     for commands if script starts with "#!" or ";!" in first line. Converts
  134.     Unix pathes like "/usr/..." to "usr:...".
  135.  - New option "-w" for Cshell, don't use window pointer (useful for KingCON).
  136.  - New option "-V" for Cshell, send only VT100 compatible control sequences
  137.  - Internal variable "o_vt100" now used (if option -t or -V is set),
  138.     don't send control sequences that are not VT100 compatible (eg,
  139.     special Amiga control sequences).
  140.  
  141.  
  142.  
  143. Changes from 5.36 to 5.37   (public release)
  144. -------------------------
  145.  - Built-in command "mkdir" now strips off trailing slash (if any).
  146.  - Built-in command "chmod" now supports "a" for all bits (ugo),
  147.     and if no ownership-bit is specified "chmod" really modifies
  148.     only the user-bits (as stated in the doc) and not all bits.
  149.  - Built-in commands "chown/chgrp" now also run under AmigaOS 2.0+
  150.     (direct DOS packets), not only under AmigaOS 3.0+ (SetOwner).
  151.     [thanks to Carsten Heyl]
  152.  - No requester "please insert volume ..." when you press return
  153.     and your current directory is on an "unmounted" volume
  154.     (eg, a removed floppy disk).
  155.  - Built-in command "dir" now uses contents of variable "_dirformat"
  156.     (if set) automatically as default output format (option -z not
  157.     neccessary for _dirformat anymore). Option -z (followed by an
  158.     argument with format string) can now be used again for another
  159.     custom format for current call as in Cshell 5.19 and before.
  160.     [thanks to Laurent Faillie for his letter]
  161.  - Built-in command "protect" was broken in beta-version 5.36.
  162.  - Source code now "indent" clean.
  163.     (some warnings on first run, but no errors)
  164.  - New option "-c" for built-in command "qsort": be case-sensitive.
  165.  
  166.  
  167.  
  168. Changes from 5.35 to 5.36   (internal beta release)
  169. -------------------------
  170.  - Now output in "path -r" only if at least 1 memory block could not be
  171.     freed.
  172.  - Fixed layout bug in "rm -r <wildcard>" if one or more items could not
  173.     be removed.
  174.  - Fixed serious bug in "rehash", access to already freed memory under
  175.     certain circumstances.  (always think twice before using "char ***" ;-)
  176.  - Manual entry for built-in command "relabel".
  177.  - Error checking code for all NameFromLock() calls.
  178.  - Now 100% Commodore-compatible version string.
  179.  - Now @rnd( ) accepts optional seed parameter.
  180.  - Fixed bogus output for NULL pointers in pattern-matching-routine.
  181.  - Fixed bug in "rehash", recognition of executables was broken.
  182.  - Now multiple drive names are allowed for "diskchange".
  183.  - Now @age() returns null-string if file was not found (instead of 99999).
  184.     [thanks to Gary Duncan]
  185.  - New function @age_mins() returns age of file in minutes.
  186.     [thanks to Gary Duncan]
  187.  - Now requesters appear on same screen as CSH's window.
  188.  - Variable "_abbrev" now handled somewhat different: it enables/disables
  189.     the different modes of command-abbreviation.  See manual for details!
  190.  - Output of "dir -k" and "dir -i" (show classes) looks much nicer now.
  191.  - Added class "gzip" to csh:class.sh.
  192.  - Added support for MultiUser. %U in prompt/titlebar shows current user
  193.     of CSH. Out-comment "#define MULTIUSER_SUPPORT 1" in shell.h to compile
  194.     without MultiUser stuff.
  195.     [thanks to Magnus Lilja]
  196.  - New built-in commands "chown" and "chgrp".
  197.  - Built-in command "chmod" now supports User/Group/Other bits.
  198.  - New placeholders for custom output format (option "-z"),
  199.     "%F" shows group/other bits, %U shows user-id, %G shows group-id.
  200.  
  201.  
  202.  
  203. Changes from 5.34 to 5.35   (public release)
  204. -------------------------
  205.  - Now CSH executes "s:.logout" on exit.
  206.     New option "-L" (noLogout) disables sourcing of "s:.logout".
  207.  - Fixed option "-n" in built-in command "dir", never worked before.
  208.  - Some minor layout changes in built-in command "help".
  209.  - Built-in command "window -q" (query) shows public screen names.
  210.  - New/Changed options for built-in command "strings".
  211.     (not compatible with previous versions!)
  212.  - More sophisticated memory-cleanup for built-in command "path -r" (reset).
  213.  - New option "-M" for CSH, don't clear menus (especially for KingCON).
  214.  - Support for soft-links in built-in command "dir".
  215.     [thanks to Carsten Heyl]
  216.  
  217.  
  218.  
  219. Changes from 5.33 to 5.34   (internal beta release)
  220. -------------------------
  221.  
  222.  - New section SCROLLING in the manual (at the end). Read it !
  223.  - New variable "_prghash" holds filename where program hash list
  224.     is loaded from and saved to.
  225.  - Now CSH also finds programs in resident list if they start with "C:"
  226.     (even if there is no corresponding program in C: directory).
  227.     This is for compatibility reasons (Commodore Shell).
  228.  - In previous versions CSH aborted the commandline if one pattern
  229.     did not match. Now CSH only aborts if all patterns does not
  230.     match.
  231.  - Totally new meaning of variable "_nomatch".  It's now unset by
  232.     default and if you set it then CSH will _not_ abort if all
  233.     patterns does not match.
  234.  - Added option "-m" to CSH, sets "_nomatch" variable.
  235.     (for compatibility reasons)
  236.  - Fixed bug in date command (s/r options).
  237.     [Gary Duncan]
  238.  - New option -a for "copy" command, don't clear archive bit.
  239.     [Gary Duncan]
  240.  - Rewritten code for "window -q", no longer crashes system.
  241.  - New option "-w" for built-in command "window".
  242.     (ignore window width for option -q, so that very long window/screen
  243.      titles are printed completely)
  244.  - Input/output redirection with "<>", the file must be either
  245.     "NIL:" or an interactive file.
  246.  - New variable "_cquote" enables Commodore-style handling of
  247.     quotation marks (eg, for use with ReadArgs);
  248.     variable is unset by default (UNIX-style handling of quotes).
  249.  - Increased some (very small) buffers in "ls" code (could crash
  250.     machine), line limit is now around 1000 chars per line. Had
  251.     to increase internal stack size to 17500.
  252.  
  253.  
  254.  
  255. Changes from 5.32 to 5.33   (internal beta release)
  256. -------------------------
  257.  
  258.  - New built-in command "rehash", buffers programs in DOS search path
  259.     and offers program name completion (ESC-p, ESC-P). Two new "completion
  260.     functions" for keymaps:
  261.     36, CompPrg1     Insert first matching program (or cycle)
  262.     37, CompPrgAll   Shows all matching programs
  263.  - Fixed input-stream problem for DOS scripts.
  264.  - Kludge for running DOS scripts from devices with spaces in their name.
  265.  - Fixed Enforcer hit in "set" command (eg, "set a ="),
  266.     just curious: this Enforcer hit was misinterpreted by an user to be
  267.     a bug in "_every" variable and accidently I found another bug there
  268.     which caused CSH to ignore "_every" if the previous shell command was
  269.     aborted (^C)
  270.  - Fixed Enforcer hit: "unset _path"
  271.  - Built-in command "date" can now read battery-backed up clock directly
  272.     [thanks to Gary Duncan]
  273.  
  274.  
  275.  
  276. Changes from 5.31 to 5.32   (internal beta release)
  277. -------------------------
  278.  
  279.  - Removed "No match" output if "dir" was used on empty directories.
  280.     This was a feature, not a bug.  But misunderstood by most users.
  281.  - New "edit function" for keymaps: 29, insert last word of previous line
  282.     (e.g. "keymap 0 12=29" assigns that function to CTRL+L)
  283.  - Option "-q" of built-in command "rm/delete" didn't work in previous
  284.     versions.  Now aborts as documented.
  285.     This does _not_ affect non-matching wildcards, use "_nomatch" instead.
  286.  - Checking of requested stack size (built-in command "stack").
  287.  - Built-in command "mem" now calls AllocMem(0x7fffffff,0) ten times
  288.     to flush unneeded memory.  (similar to "avail flush")
  289.  - Fixed possible rounding bug in "itok()", caused display of wrong size
  290.     for harddisk partitions around 1 GB etc.
  291.  
  292.  
  293.  
  294. Changes from 5.19 to 5.31   (The Essential)
  295. -------------------------
  296.  
  297.  - ARP free
  298.  - OS 2.0+ only
  299.  - slightly changed pattern matching (pattern.library, dos.library)
  300.  - better support for DOS' command search path and resident list
  301.  - supports "PROGDIR:"
  302.  - supports AmigaOS-scripts
  303.  - Unix-like automagic execution of ".login" and ".cshrc"
  304.  - more built-in commands support ^C (ctrl-c)
  305.  - more reliable support of WILDSTAR-Flag
  306.  - enhanced commands (new options, bug fixes, changed behaviour):
  307.     dir
  308.     path
  309.     info
  310.     rename
  311.     delete
  312.     assign
  313.     touch
  314.     ps
  315.     mkdir
  316.     addbuffers
  317.     cd
  318.     stack
  319.     help
  320.     strings
  321.     menu
  322.     resident
  323.     head
  324.     tail
  325.     set
  326.  - new commands
  327.     ln/makelink
  328.     chmod
  329.  - new (or modified) functions
  330.     @stricmp
  331.     @filedate
  332.     @filenote
  333.     @hextodec
  334.     @confirm
  335.     @ask
  336.  - new variables
  337.     _clipri
  338.     _dirformat
  339.     _nomatch
  340.  - new prompt variable(s)
  341.  - new "edit function" for keymaps
  342.  - detects if current directory was changed by other programs
  343.  - uses ASL file-requester
  344.  - arguments in scripts passed via $0, $1, $2 etc., number of
  345.     arguments in $#
  346.  - enhanced quoting mechanism for filename completion
  347.  - lots of internal changes
  348.  - lots of other bug fixes
  349.  - and lots of changes and new features I forgot to write down ;-)
  350.  
  351.  
  352.